Class com.symantec.itools.vcafe.openapi.InvalidPersistentAttributeException
All Packages Class Hierarchy This Package Previous Next Index
Class com.symantec.itools.vcafe.openapi.InvalidPersistentAttributeException
Object
|
+----Throwable
|
+----Exception
|
+----RuntimeException
|
+----com.symantec.itools.vcafe.openapi.InvalidPersistentAttributeException
- public class InvalidPersistentAttributeException
- extends RuntimeException
Indicates the setting or getting of persistent Attributes
which can't be properly streamed
in or out. This can happen if the attribute doesn't properly implement java.io.Serializable, for example.
- Version:
- 1.0
- Author:
- Symantec Internet Tools Division
- Since:
- VCafe 3.0
- See Also:
- getPersistentAttributeValue, setPersistentAttributeValue
-
com.symantec.itools.vcafe.openapi.InvalidPersistentAttributeException(Class, String, Exception)
- Constructs an InvalidPersistentAttributeException that encapsulates the original
Exception that occurred when trying to set or get the persistent attribute.
-
toString()
- Gets a
String
that represents this object.
InvalidPersistentAttributeException
public InvalidPersistentAttributeException(Class owner,
String attributeName,
Exception exc)
- Constructs an InvalidPersistentAttributeException that encapsulates the original
Exception that occurred when trying to set or get the persistent attribute.
- Parameters:
- owner - The Class that conceptually owns this attribute/value (cannot be null).
- attributeName - The locale-independent name of the attribute.
- exc - The original problem exception.
toString
public java.lang.String toString()
- Gets a
String
that represents this object. This String
includes the stack trace
of the original Exception that triggered this InvalidPersistentAttributeException.
- Returns:
- the
String
- Overrides:
- toString in class Throwable
All Packages Class Hierarchy This Package Previous Next Index